* s/isc3-0.h (memmove): #define this to call safe_bcopy.
authorJim Blandy <jimb@redhat.com>
Wed, 16 Jun 1993 20:52:40 +0000 (20:52 +0000)
committerJim Blandy <jimb@redhat.com>
Wed, 16 Jun 1993 20:52:40 +0000 (20:52 +0000)
src/s/isc3-0.h

index fe5d718bfc9643f0846974423d0eaf2bc48ef17b..f46994e56ff8a2c44b19d2c3568889f8a15ab518 100644 (file)
@@ -22,3 +22,8 @@
 #undef LIB_X11_LIB
 #undef LIBX11_SYSTEM
 #define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lc
+
+/* marko@tekelec.com (Marko Rauhamaa) says that his linker couldn't
+   find memmove, but that sounds crazy - I thought all SYSV
+   descendants had that.  Let us know if this turns out to be wrong.  */
+#define        memmove(d, s, n) safe_bcopy ((s), (d), (n))